home *** CD-ROM | disk | FTP | other *** search
- /*
- * **************************************************************
- * JdeBP C++ Library Routines General Public Licence v1.00
- * Copyright (c) 1991,1992 Jonathan de Boyne Pollard
- * **************************************************************
- *
- * API TYPES for OS/2 and WINDOWS CALLS
- *
- */
-
- #if !defined(___API_H_INCLUDED)
-
- #define _APICALL far pascal
-
- typedef unsigned long NETLONG; // Network byte order
- typedef unsigned short NETSHORT; // Network byte order
-
- typedef unsigned char BYTE;
- typedef unsigned short WORD;
- typedef unsigned long DWORD;
-
- typedef unsigned short PARA;
-
- typedef signed long LONG;
-
- typedef unsigned short USHORT ;
- typedef unsigned long ULONG ;
- typedef unsigned int UINT ;
- typedef unsigned char UCHAR ;
-
- #define ___API_H_INCLUDED
- #endif
-